func go/scanner.isDecimal
6 uses
go/scanner (current package)
scanner.go#L314: return isDecimal(ch) || ch >= utf8.RuneSelf && unicode.IsDigit(ch)
scanner.go#L378: func isDecimal(ch rune) bool { return '0' <= ch && ch <= '9' }
scanner.go#L390: for isDecimal(s.ch) || s.ch == '_' {
scanner.go#L536: case isDecimal(d) || x1 == 'x' && isHex(d):
scanner.go#L821: case isDecimal(ch) || ch == '.' && isDecimal(rune(s.peek())):
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)